home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / haltdemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  193 b   |  7 lines

  1. program HaltDemo;
  2. begin
  3.   WriteLn ('This string will always be this program''s output.');
  4.   Halt;  { Terminate right here and right now. }
  5.   WriteLn ('And this string won''t ever!')
  6. end.
  7.